home *** CD-ROM | disk | FTP | other *** search
/ OPUS 2 / Opus II - The Software.bin / GS-24 MPW-IIGS ORCA⁄C / ORCACDefs / setjmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-15  |  396 b   |  22 lines  |  [TEXT/MPS ]

  1. /****************************************************************
  2. *
  3. *  setjmp.h - nonlocal jump library
  4. *
  5. *  February 1989
  6. *  Mike Westerfield
  7. *
  8. *  Copyright 1989
  9. *  Byte Works, Inc.
  10. *
  11. ****************************************************************/
  12.  
  13. #ifndef __setjmp__
  14. #define __setjmp__
  15.  
  16. typedef int jmp_buf[4];
  17.  
  18. void            longjmp(jmp_buf, int);
  19. int             setjmp(jmp_buf);
  20.  
  21. #endif
  22.